/* Mobile Marketing Section Styles */
.mobile-marketing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
    position: relative;
}

.mobile-marketing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.content-left {
    flex: 0 1 45%;
}

.content-left h2 {
    font-size: 2.2rem;
    color: #009688;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.content-left h2::before {
    display: none;
}

.content-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.request-callback {
    background: #009688;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

.request-callback:hover {
    background: #00897b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 150, 136, 0.3);
}

.content-right {
    flex: 0 1 55%;
    position: relative;
}

.mobile-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    background: transparent;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: none;
    outline: none;
    background: transparent;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: float 3s ease-in-out infinite;
}

.pie-chart {
    top: 5%;
    left: -50px;
    animation-delay: 0.5s;
}

.bell {
    top: 15%;
    right: -40px;
    animation-delay: 0.8s;
}

.target {
    bottom: 20%;
    right: -45px;
    animation-delay: 1s;
}

.clock {
    bottom: 15%;
    left: -45px;
    animation-delay: 1.2s;
}

.smile {
    top: 30%;
    left: 20%;
    animation-delay: 0.7s;
}

.social-icons {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-marketing-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .content-left {
        flex: 0 1 100%;
    }

    .content-right {
        flex: 0 1 100%;
    }

    .mobile-illustration {
        height: 350px;
    }

    .video-container {
        max-width: 400px;
    }

    .content-left h2 {
        font-size: 1.8rem;
    }

    .content-left p {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .float-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .mobile-marketing-section {
        padding: 40px 0;
    }

    .mobile-illustration {
        height: 300px;
    }

    .video-container {
        max-width: 350px;
    }

    .float-icon {
        width: 30px;
        height: 30px;
    }

    .pie-chart {
        left: -30px;
    }

    .bell {
        right: -25px;
    }

    .target {
        right: -30px;
    }

    .clock {
        left: -30px;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }

    .content-left h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .content-left p {
        font-size: 0.85rem;
        margin: 0 auto 1.5rem;
        text-align: center;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .mobile-illustration {
        height: 250px;
    }

    .video-container {
        max-width: 280px;
    }

    .float-icon {
        width: 25px;
        height: 25px;
    }

    .pie-chart {
        left: -20px;
    }

    .bell {
        right: -20px;
    }

    .target {
        right: -25px;
    }

    .clock {
        left: -25px;
    }

    .social-icons {
        gap: 0.6rem;
        bottom: -20px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .content-left h2 {
        font-size: 1.4rem;
    }

    .content-left p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }

    .request-callback {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: #0066FF;
    margin-left: 5px; /* Offset to center the play icon visually */
}

.play-button:hover {
    background: #0066FF;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover i {
    color: white;
}

.video-text {
    text-align: center;
    max-width: 600px;
}

.video-text h2 {
    font-size: 2.2rem;
    color: #2B2D42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Video Section Responsive Styles */
@media (max-width: 992px) {
    .video-section {
        padding: 60px 0;
    }

    .video-text h2 {
        font-size: 1.8rem;
    }

    .video-text p {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .video-wrapper video {
        border-radius: 15px;
    }

    .video-text h2 {
        font-size: 1.5rem;
    }

    .video-text p {
        font-size: 0.9rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 0;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper video {
        border-radius: 10px;
    }

    .video-text {
        padding: 0 1rem;
    }

    .video-text h2 {
        font-size: 1.3rem;
    }
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background: #fff;
}

.strategies-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strategies-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;  /* Add space above the button */
}

/* Button styling specific to strategies section */
.strategies-section .request-callback {
    margin-top: 2rem;
    display: inline-block;
    background: #009688;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

.strategies-section .request-callback:hover {
    background: #00897b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 150, 136, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2rem;
    color: #009688;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.strategies-list {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-item h3 {
    font-size: 1.3rem;
    color: #009688;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.strategy-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #009688;
    border-radius: 2px;
}

.strategy-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.strategies-illustration {
    flex: 0 1 50%;
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    margin: 0 auto;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icons .icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    animation: float 3s infinite ease-in-out;
}

.icon.instagram {
    background: #E1306C;
    top: 10%;
    right: -50px;
    animation-delay: 0.5s;
}

.icon.facebook {
    background: #1877F2;
    top: 30%;
    left: -50px;
    animation-delay: 0.8s;
}

.icon.share {
    background: #25D366;
    top: 50%;
    right: -40px;
    animation-delay: 1.2s;
}

.icon.rss {
    background: #FF4500;
    bottom: 30%;
    left: -45px;
    animation-delay: 1.5s;
}

.icon.email {
    background: #EA4335;
    bottom: 10%;
    right: -35px;
    animation-delay: 1.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .strategies-content {
        gap: 2rem;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .strategies-content {
        flex-direction: column;
    }

    .strategies-list,
    .strategies-illustration {
        flex: 0 1 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .strategies-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .strategy-item h3 {
        font-size: 1.1rem;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-width: 8px;
    }

    .strategies-section .request-callback {
        margin-top: 1.5rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .strategy-item {
        padding: 1rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-width: 6px;
    }

    .strategies-section .request-callback {
        margin-top: 1rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        width: 80%;  /* Make button wider on mobile */
        max-width: 300px;  /* But not too wide */
    }
} 